home *** CD-ROM | disk | FTP | other *** search
/ Windows Game Programming for Dummies (2nd Edition) / WinGamProgFD.iso / pc / DirectX SDK / DXSDK / bin / DXUtils / AppWizard / DXAppwiz.awx / TEMPLATE / GDI_DLGSTDAFX.H < prev    next >
Encoding:
C/C++ Source or Header  |  2001-10-25  |  1.4 KB  |  58 lines

  1. // stdafx.h : include file for standard system include files,
  2. //  or project specific include files that are used frequently, but
  3. //      are changed infrequently
  4. //
  5.  
  6. #if !defined($$FILE_NAME_SYMBOL$$_INCLUDED_)
  7. #define $$FILE_NAME_SYMBOL$$_INCLUDED_
  8.  
  9. #if _MSC_VER > 1000
  10. #pragma once
  11. #endif // _MSC_VER > 1000
  12.  
  13. #define VC_EXTRALEAN        // Exclude rarely-used stuff from Windows headers
  14.  
  15. #include <afxwin.h>         // MFC core and standard components
  16. #include <afxext.h>         // MFC extensions
  17. #include <afxdtctl.h>        // MFC support for Internet Explorer 4 Common Controls
  18. #ifndef _AFX_NO_AFXCMN_SUPPORT
  19. #include <afxcmn.h>            // MFC support for Windows Common Controls
  20. #endif // _AFX_NO_AFXCMN_SUPPORT
  21.  
  22. #include <windows.h>
  23. #include <basetsd.h>
  24. #include <math.h>
  25. #include <stdio.h>
  26. #include <DXErr8.h>
  27. #include <tchar.h>
  28. $$IF(DINPUT)
  29. #include <dinput.h>
  30. $$ENDIF
  31. $$IF(DPLAY)
  32. #include <dplay8.h>
  33. #include <dplobby8.h>
  34. $$ENDIF
  35. $$IF(ACTIONMAPPER)
  36. #include "DIUtil.h"
  37. $$ENDIF
  38. $$IF(DMUSIC)
  39. #include "DMUtil.h"
  40. $$ENDIF
  41. $$IF(DSOUND)
  42. #include "DSUtil.h"
  43. $$ENDIF
  44. $$IF(DPLAY)
  45. #include "NetConnect.h"
  46. $$ENDIF
  47. $$IF(DPLAYVOICE)
  48. #include "NetVoice.h"
  49. $$ENDIF
  50. #include "DXUtil.h"
  51. #include "resource.h"
  52.  
  53.  
  54. //{{AFX_INSERT_LOCATION}}
  55. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  56.  
  57. #endif // !defined($$FILE_NAME_SYMBOL$$_INCLUDED_)
  58.